home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / Clinic / ActiveX.dpr < prev    next >
Text File  |  2000-03-24  |  376b  |  23 lines

  1. library ActiveX;
  2.  
  3. uses
  4.   ComServ,
  5.   ActiveX_TLB in 'ActiveX_TLB.pas',
  6.   ActiveFormImpl in 'ActiveFormImpl.pas' {ActiveFormX: TActiveForm} {ActiveFormX: CoClass},
  7.   ButtonImpl in 'ButtonImpl.pas' {ButtonX: CoClass};
  8.  
  9. {$E ocx}
  10.  
  11. exports
  12.   DllGetClassObject,
  13.   DllCanUnloadNow,
  14.   DllRegisterServer,
  15.   DllUnregisterServer;
  16.  
  17. {$R *.TLB}
  18.  
  19. {$R *.RES}
  20.  
  21. begin
  22. end.
  23.